// Loads an image that is 320 pixels wide and 240 pixels high
PImage img = loadImage("ohio.jpg");
int w = img.width; // Assign 320 to w
int h = img.height; // Assign 240 to h
println(w); // Prints "320"
println(h); // Prints "240"
